type log/slog.discardHandler

6 uses

	log/slog (current package)
		handler.go#L608: var DiscardHandler Handler = discardHandler{}
		handler.go#L610: type discardHandler struct{}
		handler.go#L612: func (dh discardHandler) Enabled(context.Context, Level) bool  { return false }
		handler.go#L613: func (dh discardHandler) Handle(context.Context, Record) error { return nil }
		handler.go#L614: func (dh discardHandler) WithAttrs(attrs []Attr) Handler       { return dh }
		handler.go#L615: func (dh discardHandler) WithGroup(name string) Handler        { return dh }